home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / TreeView / TreeView_main.m < prev    next >
Encoding:
Text File  |  1995-04-12  |  416 b   |  20 lines

  1. /* Copyright (c) 1995 Don Yacktman.
  2.    Use is governed by the MiscKit license.
  3. */
  4.  
  5. /* Generated by the NeXT Project Builder 
  6.    NOTE: Do NOT change this file -- Project Builder maintains it.
  7. */
  8.  
  9. #import <appkit/Application.h>
  10.  
  11. void main(int argc, char *argv[]) {
  12.  
  13.     [Application new];
  14.     if ([NXApp loadNibSection:"TreeView.nib" owner:NXApp withNames:NO])
  15.         [NXApp run];
  16.         
  17.     [NXApp free];
  18.     exit(0);
  19. }
  20.